Use Find Method of Generic List
Is there a quick way to Find an object in a List<T> without looping through the List or using Linq? Yes; use the Find Method of the object.
If you are new to .NET, or even if you have been using it for years, but you still have outdated ways of doing things, you might be waisting developement time, resources, and performance if you do not keep up to date on new features that the .NET framework brings to the table for algorithms that you use all the time.
For example, if you need to find an object in a generic List<T>, you might still be using code like the code shown below. Suppose that you have a List<Address> and the Address object has an IsPrimary field (bool). One and only one of the objects can be primary and you need to retrieve the primary address object from the List. The "user" object has an Addressess property which is a List<Address>. The tried and proven (over and over) method for doing this would be:
Address primaryAddress;
foreach (Address addr in user.Addresses)
{
if (addr.IsPrimary)
{
primaryAddress = addr;
break;
} // if
} // foreach
Obviously, the code shown above works just fine. But, consider the following line of code that will achieve the same result.
Address primaryAddr =
user.Addresses.Find(delegate(Address obj)
{ return obj.IsPrimary; });
Passing a Delegate to the Find method of the generic List<Address> finds the object that has the IsPrimary field set to true with a single line of code.
Just another shortcut that hopefully will save you some time.

10 Comments:
人生最大的榮耀,不是永遠不敗,而是屢仆屢戰..................................................
閱讀您的BLOG文章,真是件快樂的事!........................................
破解色情守門人成人色情電影院線上免費色情短片色情動畫影成人色情動畫成人電影秀亞洲線上免費成人電影性片免費狂看性交線上免費影片性免費小說網性美女做愛性美女遊戲性教影片性教學影片性感乳房影片性感做愛電影性感援交妹性感電影性感劍士性愛a片免費試看性小遊戲幸愛影片姓愛圖貼亞洲線上免費電影亞洲線上免費影片其色制聊天室咆哮入口咆哮老鼠網咆哮鼠85cc聊天室情色視訊情色視訊
只用微笑說話的人,才能擔當重任。..................................................
how do u do?xvideo打飛機專用網洪爺免費洪爺色情片洪爺貼圖區洪爺成人線上洪爺影城洪爺色論壇洪爺貼圖洪爺成年人網洪爺免費色情洪爺色情貼援交妹辣妹野球拳情色文學情趣聊天室性感辣妹裸體遊戲做愛偷拍一夜情視訊洪爺色情貼洪爺免費色情洪爺成年人網洪爺貼圖洪爺色論壇洪爺影城洪爺成人線上洪爺貼圖區洪爺色情片洪爺免費洪爺色情貼洪爺免費色情洪爺成年人網洪爺貼圖洪爺色論壇洪爺影城洪爺成人線上洪爺貼圖區洪爺色情片洪爺免費洪爺免費洪爺色情片洪爺貼圖區洪爺影城洪爺色論壇洪爺貼圖洪爺成年人網洪爺免費色情洪爺色情貼洪爺成人線上
正點喔 多謝大大無私的分享 感恩拉( ̄∀ ̄)........................................
KK777一夜激情聊天live show成人自拍貼圖自慰少婦自拍裸體圖片台灣色情成人網站情人視訊網情色留言板視訊美女免費視訊聊天室限制級極度震撼情色論壇色情特區自拍裸女貼圖潮吹性影片觀賞小穴情色片a圖片sex story性愛影片美女做愛成人色情網站性愛圖片成人情色貼圖全裸寫真集圖片走光圖女生陰毛自慰影片色情av1007成人色情聊天室女生自慰裸體照成人影音聊天台灣色情網站色情片打手槍情色天堂成人視訊聊天免費情色網站av網超性感辣妹激突成人論壇情色視訊聊天鹹濕成人網站av成人論壇免費美女視訊
淫蕩人妻,日本美女短片免費觀看淫娃免費視訊淫娃免費視訊聊天室淫淫美女視訊交友一網情深聊天室一葉情貼影片區一葉晴語音聊天網av127上班族酒趴網日本 a 片,無碼影片,美女,sexy,a片天堂杜雷斯免費影片壞朋友論壇一夜情視訊影音視訊fm358視訊美女聊天室免費性影片成人短片sexaa免費看影片拓網交友高雄援交妹彩虹視訊交友網免費聊天66k正妹視訊elove交友520sex視訊影音交友aio 交友愛情館台北美女視訊新竹援交自拍av短片-免費a片一夜情台中援交妹視訊go2av成人聊天室情人視訊網免費視訊美女自拍線上av免費影片1007視訊a片免費看視訊交友ing168 視訊聊天室一對一 show666vl netbbs論壇本土自拍免費視訊聊天 msn亞洲限制級成人影片區
一個人就像一個分數,他的實際才能是分子,他對自己的評價是分母。分母越大,則分數的價值越小。 ....................................................
我只知道,假如我去愛人生,那人生一定也會回愛我..............................
Post a Comment
<< Home